home *** CD-ROM | disk | FTP | other *** search
/ Netware Super Library / Netware Super Library.iso / file_mgt / ffg / util_bat / delbak.bat < prev    next >
Encoding:
DOS Batch File  |  1994-10-23  |  329 b   |  14 lines

  1. @echo off
  2. cls
  3. echo Here all .BAK files will be found and deleted.  You will be asked to confirm
  4. echo each file deletion.
  5. echo.
  6. echo Press any key to begin searching...
  7. pause >nul
  8. ::
  9. :: Note use of double %% below.  Double %% are used instead of single % inside
  10. :: batch files.
  11. ::
  12.   echo on
  13.   ffg *:*.bak /e"DEL %%n"
  14.